home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 65.zip / BS1 part 65 / DevPac v3.02b.adf / include / workbench / startup.i < prev    next >
Text File  |  1991-11-20  |  965b  |  40 lines

  1.     IFND    WORKBENCH_STARTUP_I
  2. WORKBENCH_STARTUP_I    SET    1
  3. **
  4. **    $Filename: workbench/startup.i $
  5. **    $Release: 1.3 $
  6. **
  7. **    Workbench startup definitions 
  8. **
  9. **    (C) Copyright 1985,1986,1987,1988 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. **
  12.  
  13.     IFND    EXEC_TYPES_I
  14.     INCLUDE "exec/types.i"
  15.     ENDC    ; EXEC_TYPES_I
  16.  
  17.     IFND    EXEC_PORTS_I
  18.     INCLUDE "exec/ports.i"
  19.     ENDC    ; EXEC_PORTS_I
  20.  
  21.     IFND    LIBRARIES_DOS_I
  22.     INCLUDE "libraries/dos.i"
  23.     ENDC    ; LIBRARIES_DOS_I
  24.  
  25.  STRUCTURE WBStartup,0
  26.     STRUCT    sm_Message,MN_SIZE    ; a standard message structure
  27.     APTR    sm_Process        ; the process descriptor for you
  28.     BPTR    sm_Segment        ; a descriptor for your code
  29.     LONG    sm_NumArgs        ; the number of elements in ArgList
  30.     APTR    sm_ToolWindow        ; description of window
  31.     APTR    sm_ArgList        ; the arguments themselves
  32.     LABEL    sm_SIZEOF
  33.  
  34.  STRUCTURE WBArg,0
  35.     BPTR    wa_Lock            ; a lock descriptor
  36.     APTR    wa_Name            ; a string relative to that lock
  37.     LABEL    wa_SIZEOF
  38.  
  39.     ENDC    ; WORKBENCH_STARTUP_I
  40.